home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene1_2.dir / 00108_Script_108 < prev    next >
Text File  |  1999-03-01  |  683b  |  23 lines

  1. on enterFrame
  2.   if the puppet of sprite 95 = TRUE then
  3.     puppetSprite 95, FALSE -- the rewind button coming from scene2
  4.     set the loc of sprite(95) = point(1000, 1000)
  5.     updateStage
  6.   else if the puppet of sprite 95 = FALSE then
  7.     puppetSprite 95, FALSE -- the rewind button coming from scene2
  8.     set the loc of sprite(95) = point(1000, 1000)
  9.     updateStage
  10.   end if
  11.   
  12.   
  13. end
  14.  
  15. on exitframe
  16.   puppetSprite 96, TRUE -- the back to intro button
  17.   set the loc of sprite(96) = point(322,19)
  18.   set the blend of sprite 96 = 0
  19.   puppetSprite 97, TRUE -- the fastforward button
  20.   set the loc of sprite(97) = point(571,19)
  21.   set the blend of sprite 97 = 0
  22. end
  23.